home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 6586 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.5 KB

  1. Path: erich.triumf.ca!bennett
  2. From: bennett@erich.triumf.ca (P.Bennett)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Turbo C linker errors
  5. Date: 16 Feb 1996 12:09 PST
  6. Organization: TRIUMF: Tri-University Meson Facility
  7. Distribution: world
  8. Message-ID: <16FEB199612090166@erich.triumf.ca>
  9. References: <4g2242$2ll@firebrick.mindspring.com>
  10. NNTP-Posting-Host: ftp.triumf.ca
  11. News-Software: VAX/VMS VNEWS 1.50    
  12.  
  13. In article <4g2242$2ll@firebrick.mindspring.com>, kbeaver@a.crl.com writes...
  14. >I am using Borland Turbo C++ v3.0 and I am receiving the following errors:
  15. >"Linker error: Undefined symbol NWGETFILESERVERINFORMATION in module ..\prog\test.cpp"
  16. >-and-
  17. >"Linker error: Undefined symbol NWCALLSINIT in module ..\prog\test.cpp"
  18. >I am just making a basic NetWare API call as seen below using the header file "nwcalls.h"
  19. >#include <stdio.h>
  20. >#include <conio.h>
  21. >#include <nwcalls.h>
  22.  
  23. You probably have to add the netware library to your project, or otherwise tell
  24. the linker to search it.  #include <nwcalls.h> just tells the compiler what the 
  25. fucntions look like - it doesn't tell the linker where to find them.
  26.  
  27. Peter Bennett VE7CEI                | Vessels shall be deemed to be in sight
  28. Internet: bennett@triumf.ca         | of one another only when one can be
  29. Packet: ve7cei@ve7kit.#vanc.bc.ca   | observed visually from the other
  30. TRIUMF, Vancouver, B.C., Canada     |                          ColRegs 3(k)
  31. GPS and NMEA info and programs: ftp://sundae.triumf.ca/pub/peter/index.html
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.